home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 13 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  999 b 

  1. Path: cityscape.co.uk!usenet
  2. From: pjs@bcs.org.uk (Peter J Seymour)
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: QSORT in REXX
  5. Date: 1 Jan 1996 20:01:33 GMT
  6. Organization: IP-GOLD User
  7. Distribution: inet
  8. Message-ID: <4c9eit$cga@news.cityscape.co.uk>
  9. References: <4c0hog$qov@newsbf02.news.aol.com>
  10. NNTP-Posting-Host: cisew61.demon.co.uk
  11. X-Newsreader: WinVN 0.92.6+
  12.  
  13. In article <4c0hog$qov@newsbf02.news.aol.com>, blakeae@aol.com (BlakeAE) says:
  14. >
  15. >Does anyone have an example of how to use the Quick Sort algorithm in a
  16. >REXX exec?  If so please post an example.
  17. >
  18. Interesting point about quicksort. I've experimented with several sorts
  19. in Rexx and I can't get quicksort to work reliably - it often leaves
  20. isolated items out of sequence. The fastest technique in rexx that I
  21. have found is an insertion sort. I suspect this is because of its
  22. short code path compared with the others and that code path length is 
  23. an important consideration in an interpretated language.
  24.  
  25. Am I addressing the right question?
  26.